Module Sections

Module sections are the next way to split up your documents/code so users can understand what's shakin'

Create a Module Section

It's All in the Name / Id

Similar to creating a module, all you need to do is specify the section via the naming convention.

This means, if you want to stick your "booyah" document in the "carl" module and the "filter" section, you simply specify that in your name:

@ngdoc filter
@name carl.filter:booyah

Defualt Sections for the "@doc" default documentation plugin:

@name moduleName.global
@name moduleName.class

Defualt Sections for the "@ngdoc" documentation plugin:

@name moduleName.directive
@name moduleName.service
@name moduleName.filter
@name moduleName.inputType

... and since all plugins inherit from the default plugin we also get:

@name moduleName.global
@name moduleName.class
As of this writing you must only put documentation into sections that are specified by the documentation plugin you are using.

This may change soon... stay posted!